Loading
Scriptbox
 VBScript Links 
 About VBscript 
 JavaScript Links 
 About JavaScript 
 Powershell Links 
 PSCRIPT the Script Launcher 
 PowerShell Shortcut Keys 
 About Powershell 
     VBScript
    JavaScript
    Powershell
Disclaimer
Contact
Latest 10 Scripts
Script search
  :: { Category } :: 0-9ABCDEFGHIJKLMNOPQRSTUVWXYZ
         

Search Options:  Enumerating  History  Files  

 Content of Enumerating History Files.vbs
MD5 Hash: 7F3B80302345ACF264C018141F40BE30
' Description: Lists all the IIS history files found on the local computer.


On Error Resume Next

strComputer = "."

Set objWMIService = GetObject _
("winmgmts:{authenticationLevel=pktPrivacy}\\" _
& strComputer & "\root\microsoftiisv2")

Set objComputer = _
objWMIService.Get("IIsComputer.Name='LM'")

intIndex = 0

Do While True
strName = ""
objComputer.EnumHistory strLocation, intMajorVersion, _
intMinorVersion, strDateTime, intIndex
If (Err.Number <> 0) Then
Exit Do
End If

dtDate = DateSerial(Mid(strDateTime, 1, 4), _
Mid(strDateTime, 5, 2), Mid(strDateTime, 7, 2))
dtTime = TimeSerial(Mid(strDateTime, 9, 2), _
Mid(strDateTime, 11, 2), Mid(strDateTime, 13, 2))
strFmtDateTime = FormatDateTime(dtDate) & " " & _
FormatDateTime(dtTime, vbLongTime)

Wscript.Echo "Location: " & strLocation
WScript.Echo "Major Version: " & intMajorVersion
WScript.Echo "Minor Version: " & intMin0rVersion
WScript.Echo "Date and Time: " & strFmtDateTime

intIndex = intIndex + 1
Loop

   © 2008 - 2013 Boris Toll      :: Scripts available: 6.481 ::      :: scriptbox.toll.at ::      :: powered by www.toll.at ::
  Google Entries:n/a
  Yahoo Backlinks:n/a
  Live Backlinks:n/a
  del.icio.us Bookmarks:n/a
  Technorati Links:n/a